翻訳と辞書
Words near each other
・ Object locative environment coordinate system
・ Object Management Group
・ Object manager
・ Object Manager (Windows)
・ Object manipulation
・ Object model
・ Object model reference
・ Object Modeling in Color
・ Object modeling language
・ Object Naming Service
・ Object Oberon
・ Object of My Desire
・ Object of Obsession
・ Object of the mind
・ Object Orange
Object orgy
・ Object Oriented Data Technology
・ Object Oriented Input System
・ Object Oriented Management
・ Object Oriented Role Analysis and Modeling
・ Object pairing
・ Object Pascal
・ Object permanence
・ Object pool pattern
・ Object Process Graph
・ Object process methodology
・ Object pronoun
・ Object Query Language
・ Object relations theory
・ Object request broker


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Object orgy : ウィキペディア英語版
Object orgy

In computer programming, object orgy is a term, common in the Perl programming community, describing a common failure (or 'anti-pattern') in object-oriented design or programming. In an object orgy, objects are insufficiently encapsulated, allowing unrestricted access to their internals, usually leading to unmaintainable complexity.
== Consequences ==
The consequences of an object orgy are essentially a loss of the benefits of encapsulation:
* Unrestricted access makes it hard for the reader to reason about the behaviour of an object. This is because direct access to its internal state means any other part of the system can manipulate it, increasing the amount of code to be examined, and opening the door to future abuse.
* As a consequence of the difficulty of reasoning, design by contract is effectively impossible.
* If much code takes advantage of the lack of encapsulation, the result is a scarcely maintainable maze of interactions, commonly known as a ''rat's nest'' or spaghetti code.
* The original design is obscured by the excessively broad interfaces to objects.
* The broad interfaces make it harder to re-implement a class without disturbing the rest of the system. This is especially hard when the clients of the class are developed by a different team or organisation.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Object orgy」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.